home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1996 April: Mac OS SDK / Dev.CD Apr 96 SDK / Dev.CD Apr 96 SDK1.toast / Development Kits (Disc 1) / AppleScript / Development Tools / Sample Code / 7Edit 3.1 / Sources / SVAEGetDataSize.h < prev    next >
Encoding:
Text File  |  1995-11-20  |  622 b   |  23 lines  |  [TEXT/CWIE]

  1. // SVAEGetDataSize.h
  2. //
  3. // 7Edit 3.1d1. Original version by Jon Lansdell and Nigel Humphreys.
  4. // 3.1 updates by Greg Sutton.
  5. // ©Apple Computer Inc 1995, all rights reserved.
  6.  
  7. #ifndef __SVAECLONE__
  8. #define __SVAECLONE__
  9.  
  10. #include <AppleEvents.h>
  11. #include <AEObjects.h>
  12. #include <AERegistry.h>
  13.  
  14. #include "SVToken.h"
  15.  
  16. pascal OSErr    DoGetDataSize(const AppleEvent *theAppleEvent, AppleEvent *reply, long refcon);
  17.  
  18. OSErr            GetDataSizeTextToken(TextToken* theToken, AEDesc* result);
  19. OSErr            GetDataSizeTextDesc(AEDesc* textDesc, AEDesc* result);
  20. OSErr            GetDataSizeDesc(AEDesc* aDesc, DescType reqType, AEDesc* result);
  21.  
  22. #endif
  23.